This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
RE: Refreshing uidoc with action button in embedded view ~Yentl Kireplopings 20.Jan.04 10:10 PM a Web browser Domino Designer 6.0.2 CF2Windows 2000
Here is my code now, but still have the same results:
Sub Click(Source As Button)
Dim ws As New NotesUIWorkspace
Dim uiview As NotesUIView
Dim dc As NotesDocumentCollection
Dim doc As NotesDocument
Set uiview = ws.CurrentView
Set dc = uiview.Documents
Set doc = dc.GetFirstDocument
While Not (doc Is Nothing)
doc.status="Complete"
Call doc.save(False,True)
Set doc=dc.GetNextDocument(doc)
Wend
Call uiview.DeselectAll
Dim view As NotesView
Set view = uiview.View
Call view.Refresh
Call ws.ViewRefresh